home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / math / trig / trig.txt < prev   
Encoding:
Text File  |  1993-02-20  |  2.3 KB  |  70 lines

  1. This Module was prepared by
  2.    Robert J. Gorman Jr.
  3.    NATURESOFT
  4.    MARCH 9, 1993
  5.  
  6. and may be used free of charge to develop applications.
  7.  
  8. All that I ask it that if you distribute this file please 
  9. leave my name and this message on it and if you actually
  10. use it or any portion of it in developing your applications
  11. that you just drop me a note on American On-Line: RobertGJR
  12. or CompuServe:  75010,754. (I like getting mail :) )
  13.  
  14. This is just the first and most simple in a series of Visual
  15. Basic modules I am preparing for scientific programmers.  If
  16. there's anything you'd like to see drop me a note.
  17.  
  18. If you're feeling really generous, PLEASE make a small
  19. DONATION to any group working to save the tropical rain
  20. forests.  My personal favorites are programs educating
  21. children in tropical countries about the values of the
  22. rainforest.
  23.  
  24. Look for additional products from NATURESOFT in the future.
  25.  
  26. LIST OF FUNCTIONS IN THIS MODULE
  27.  
  28. Function Arccos (X)
  29.     'Calculates the Inverse Cosine of X
  30. Function ArcCosec (X)
  31.     'Calculates the Inverse Cosecant of X
  32. Function ArcCotan (X)
  33.     'Calculates the Inverse Cotangent of X
  34. Function ArcSec (X)
  35.     'Calculates the Inverse Secant of X
  36. Function Arcsin (X)
  37.     'Calculates the Inverse Sine of X
  38. Function Cosec (X)
  39.     'Calculates the Cosecant of X
  40. Function Cot (X)
  41.     'Calculates the Cotangent of X
  42. Function HArccos (X)
  43.     'Calculates the Inverse Hyperbolic Cosine of X
  44. Function HArccosec (X)
  45.     'Calculates the Inverse Hyperbolic Cosecant of X
  46. Function HArccotan (X)
  47.     'Calculates the Inverse Hyperbolic Cotangent of X
  48. Function HArcsec (X)
  49.     'Calculates the Inverse Hyperbolic Secant of X
  50. Function HArcsin (X)
  51.     'Calculates the Inverse Hyperbolic Sine of X
  52. Function HArctan (X)
  53.     'Calculates the Inverse Hyperbolic Tangent of X
  54. Function Hcos (X)
  55.     'Calculates the Hyperbolic Cosine of X
  56. Function HCoSec (X)
  57.     'Caluclates the Hyperbolic Cosecant of X
  58. Function HCotan (X)
  59.     'Calculates the Hyperbolic Cotangent of X
  60. Function HSec (X)
  61.     'Calculates the Hyperbolic Secant of X
  62. Function Hsin (X)
  63.     'Calculates the Hyperbolic Sine of X
  64. Function HTan (X)
  65.     'Calculates the Hyperbolic HTan
  66. Function LogN (X, N)
  67.     'Calculates the logarithm base N of X
  68. Function Sec (X)
  69.     'Calculates the Secant of X
  70.